/*!*****************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[0].use[1]!./node_modules/sass-loader/dist/cjs.js!./src/scss/main.scss ***!
  \*****************************************************************************************************************************************/
@charset "UTF-8";

@font-face {
  font-family: "Poppins";
  src: url("/wp-content/themes/boring-theme/src/fonts/Poppins-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Oswald";
  src: url("/wp-content/themes/boring-theme/src/fonts/Oswald-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Oswald";
  src: url("/wp-content/themes/boring-theme/src/fonts/Oswald-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

.button {
  display: block;
  width: fit-content;
  height: fit-content;
  padding: 12px 41px;
  text-align: center;
  white-space: nowrap;
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
  font-size: 14px;
  font-weight: 500;
  line-height: 100%;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  text-align: center;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 767px) {
  .button {
    width: 100%;
  }
}

.button:hover {
  transform: scale(1.05);
}

.button--white {
  background: #dadde4;
  color: #e00840;
}

.button--red {
  background: #e00840;
  color: #dadde4;
}

.button svg {
  margin-right: 10px;
}

h1 {
  font-family: "Oswald", sans-serif;
  font-size: 70px;
  font-weight: 600;
  line-height: 100%;
  text-transform: uppercase;
}

@media (max-width: 1366px) {
  h1 {
    font-size: 56px;
    line-height: 120%;
  }
}

@media (max-width: 991px) {
  h1 {
    font-size: 46px;
  }
}

@media (max-width: 767px) {
  h1 {
    font-size: 28px;
  }
}

h2 {
  font-family: "Oswald", sans-serif;
  font-size: 54px;
  font-weight: 500;
  line-height: 100%;
  text-transform: uppercase;
  letter-spacing: -1.12px;
}

@media (max-width: 767px) {
  h2 {
    font-size: 25px;
  }
}

h3 {
  font-family: "Oswald", sans-serif;
  font-size: 25px;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: -0.8px;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

p span,
h1 span,
h2 span,
h3 span,
h4 span,
h5 span,
h6 span {
  font-size: inherit;
  color: #dadde4;
}

p,
span,
li {
  font-size: 16px;
  line-height: 150%;
}

@media (max-width: 767px) {

  p,
  span,
  li {
    font-size: 14px;
  }
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: all 0.3s ease-in-out;
  z-index: 9;
}

.header__wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 3;
  flex-wrap: nowrap;
  padding: 7px 25px;
  margin-top: 7px;
}

@media (max-width: 767px) {
  .header__wrapper {
    padding: 10px;
  }
}

.logo {
  max-width: 144px;
  width: 100%;
}

@media (max-width: 767px) {
  .logo {
    max-width: 120px;
  }
}

.hero {
  min-height: 100vh;
  overflow: hidden;
  position: relative;
}

@media (max-width: 1024px) {
  .hero {
    height: auto;
    min-height: auto;
  }
}

.hero__wrapper {
  display: flex;
  flex-direction: row;
  gap: 32px;
  padding-top: 100px;
}

@media (max-width: 1024px) {
  .hero__wrapper {
    flex-direction: column;
    gap: 30px;
  }
}

.hero__title {
  font-size: 20px;
  font-weight: 600;
  line-height: 100%;
  text-transform: uppercase;
  margin-bottom: 0;
}

.hero__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 8px;
  background: #ffe500;
  display: block;
  width: fit-content;
  height: fit-content;
  padding: 12px 80px;
  text-align: center;
  white-space: nowrap;
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
  font-size: 14px;
  font-weight: 500;
  line-height: 100%;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  text-align: center;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  color: #202020;
  cursor: pointer;
}

.hero__play:hover {
  transform: translate(-50%, -50%) scale(1.05);
}

.hero__scene {
  position: relative;
}

.hero__iframe {
  border-radius: 10px;
  border: 1px solid #545969;
  background: #2d3345;
  box-shadow: 4px 4px 24px 0px #1d1e27;
  padding: 12px;
  width: 75%;
}

.hero__iframe img {
  width: 100%;
  height: auto;
  aspect-ratio: 1.65/1;
}

@media (max-width: 1024px) {
  .hero__iframe {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .hero__iframe {
    padding-bottom: 60px;
    position: relative;
  }
}

.hero__iframe iframe {
  border-radius: 10px;
  border: none;
  width: 100%;
  height: auto;
  aspect-ratio: 1.67/1;
}

.hero__right {
  width: 25%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

@media (max-width: 1024px) {
  .hero__right {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .hero__button {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 94%;
  }
}

.hero__content {
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hero__block {
  display: flex;
  align-items: center;
  gap: 17px;
}

.hero__adult {
  color: #8fa7fa;
  font-size: 12px;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: -0.384px;
  text-transform: capitalize;
}

.hero__bonus {
  width: 100%;
  border-radius: 10px;
  border: 1px solid #545969;
  background: #2d3345;
  box-shadow: 4px 4px 24px 0px #1d1e27;
  padding: 12px;
  display: flex;
  flex-direction: column;
  height: 33%;
  position: relative;
}

@media (max-width: 1024px) {
  .hero__bonus {
    width: 50%;
  }
}

@media (max-width: 767px) {
  .hero__bonus {
    width: 100%;
  }
}

.hero__bonus-title {
  font-size: 16px;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: -0.512px;
  text-transform: uppercase;
  padding-bottom: 12px;
  border-bottom: 1px solid #424a62;
  text-align: center;
  font-family: "Oswald", sans-serif;
  margin-bottom: 12px;
}

.hero__bonus-bonus {
  color: #ffe500;
  text-align: center;
  font-family: "Oswald", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 18px;
  letter-spacing: -0.512px;
  text-transform: uppercase;
  margin-bottom: 12px;
  height: 36px;
}

@media (max-width: 767px) {
  .hero__bonus-bonus {
    height: 18px;
  }
}

.hero__bonus-button {
  width: 100%;
  margin-bottom: 12px;
}

.hero__bonus-desc {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
}

.hero__bonus-desc a {
  text-decoration: underline;
}

.hero__bonus-desc span,
.hero__bonus-desc a {
  color: #8990a5;
  font-size: 12px;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: -0.384px;
  white-space: nowrap;
}

.hero__bonus-desc span::after,
.hero__bonus-desc a::after {
  content: "|";
  margin: 0 8px;
}

.hero__bonus-desc span:last-child::after,
.hero__bonus-desc a:last-child::after {
  content: none;
}

.hero__bonus-img {
  position: absolute;
  left: -10px;
  top: -10px;
  border-radius: 40px;
  border: 2px solid #2d3345;
  background: lightgray;
  overflow: hidden;
  width: 45px;
  height: 45px;
  z-index: 3;
}

.hero__bonus-img img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__bonus-terms {
  cursor: pointer;
  text-decoration: underline;
}

.hero__bonus-abs {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: red;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 10px;
  border: 1px solid #545969;
  background: #2d3345;
  box-shadow: 4px 4px 24px 0px #1d1e27;
  padding: 12px 12px 0;
}

.hero__bonus-abs--title {
  color: #8990a5;
  font-size: 14px;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: -0.384px;
  text-align: center;
  margin-bottom: 14px;
}

.hero__bonus-abs--desc {
  color: #8990a5;
  font-size: 12px;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: -0.384px;
  margin-bottom: 7px;
}

.hero__bonus-abs--button {
  width: 100%;
  margin-bottom: 12px;
}

.hero__bonus-abs {
  opacity: 0;
  transition: opacity 0.3s ease;
  transform: scale(0);
}

.hero__bonus-abs.show {
  display: flex;
  opacity: 1;
  transform: scale(1);
}

.hero__scene img {
  display: block;
}

.hero__scene iframe {
  display: none;
}

.hero__scene.active img {
  display: none;
}

.hero__scene.active iframe {
  display: flex;
}

.table-of-content {
  position: relative;
  z-index: 3;
  margin-bottom: 80px;
  margin-top: 115px;
}

@media (max-width: 1024px) {
  .table-of-content {
    margin-bottom: 60px;
    margin-top: 30px;
  }
}

@media (max-width: 767px) {
  .table-of-content {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}

.table-of-content__wrapper {
  border-radius: 10px;
  border: 1px solid #545969;
  background: #2d3345;
  box-shadow: 4px 4px 24px 0px #1d1e27;
}

.table-of-content__title {
  display: block;
  width: 100%;
  padding: 24px 16px;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 24px;
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  line-height: 36px;
  text-transform: uppercase;
  cursor: pointer;
}

@media (max-width: 991px) {
  .table-of-content__title {
    padding: 15px 10px;
  }
}

@media (max-width: 767px) {
  .table-of-content__title {
    text-align: center;
    font-size: 14px;
    padding: 14px;
  }
}

.table-of-content__list {
  display: flex;
  flex-direction: column;
  gap: 7px;
  height: 0;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
}

.table-of-content__list--active {
  opacity: 1;
  padding: 0 16px 16px;
  height: auto;
}

.image-text-block {
  position: relative;
  margin-bottom: 80px;
}

@media (max-width: 767px) {
  .image-text-block {
    margin-bottom: 65px;
  }
}

.image-text-block__wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  position: relative;
  flex-wrap: nowrap;
  align-items: center;
  gap: 40px;
  width: 100%;
  z-index: 3;
}

@media (max-width: 767px) {
  .image-text-block__wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
}

.image-text-block__wrapper--right {
  flex-direction: row-reverse;
}

@media (max-width: 767px) {
  .image-text-block__wrapper--right {
    flex-direction: column;
  }
}

.image-text-block__img {
  width: 50%;
  max-height: 500px;
  overflow: hidden;
}

@media (max-width: 767px) {
  .image-text-block__img {
    width: 100%;
  }
}

.image-text-block__img img {
  border-radius: 10px;
  object-fit: cover;
}

.image-text-block__title {
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
  text-align: center;
}

@media (max-width: 767px) {
  .image-text-block__title {
    margin-bottom: 25px;
  }
}

.image-text-block__text {
  display: flex;
  flex-direction: column;
  width: 50%;
}

@media (max-width: 767px) {
  .image-text-block__text {
    width: 100%;
  }
}

.image-text-block__text span {
  color: #dadde4;
}

.image-text-block p {
  margin-top: 10px;
}

.table {
  margin-bottom: 80px;
  position: relative;
}

@media (max-width: 767px) {
  .table {
    margin-bottom: 65px;
  }
}

.table__wrapper {
  padding: 15px;
  border-radius: 10px;
  position: relative;
  z-index: 3;
}

@media (max-width: 767px) {
  .table__wrapper {
    padding: 0;
  }
}

.table h2 {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 3;
}

.table h3 {
  margin: 20px 0;
  position: relative;
  z-index: 3;
}

table {
  font-size: 12px;
  width: 100%;
  border-spacing: 0;
}

table thead {
  background: #dadde4;
  text-align: center;
}

table thead td,
table thead th {
  border: none !important;
  background: #dadde4;
  color: #202020;
  font-family: "Oswald", sans-serif;
  font-size: 18px;
}

@media (max-width: 767px) {

  table thead td,
  table thead th {
    font-size: 16px;
  }
}

table thead td:first-child,
table thead th:first-child {
  border-radius: 10px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

table thead td:last-child,
table thead th:last-child {
  border-radius: 10px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

table td,
table th {
  padding: 24px 14px;
  border: 1px solid #dadde4;
  border-top: none;
  border-radius: 0;
}

@media (max-width: 767px) {

  table td,
  table th {
    padding: 14px 10px;
  }
}

table td:first-child,
table th:first-child {
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

table td:last-child,
table th:last-child {
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}

table tr:first-child td, table tr:first-child th {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

table tr:last-child td, table tr:last-child th {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.steps {
  position: relative;
  z-index: 3;
  margin-bottom: 80px;
}

@media (max-width: 767px) {
  .steps {
    margin-bottom: 65px;
  }
}

.steps__wrapper {
  display: flex;
  flex-direction: column;
  gap: 80px;
  position: relative;
  z-index: 3;
}

@media (max-width: 767px) {
  .steps__wrapper {
    gap: 65px;
  }
}

.steps__title {
  text-align: center;
  margin-bottom: 40px;
}

@media (max-width: 767px) {
  .steps__title {
    margin-bottom: 25px;
  }
}

.steps__desc {
  margin-bottom: 60px;
}

.steps__desc p {
  font-size: 16px;
  font-weight: 500 !important;
}

.steps__item {
  display: flex;
  flex-direction: row-reverse;
  gap: 40px;
  width: 100%;
  position: relative;
}

@media (max-width: 767px) {
  .steps__item {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
}

.steps__item-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 50%;
  align-items: baseline;
  padding: 10px 0;
}

@media (max-width: 767px) {
  .steps__item-content {
    width: 100%;
  }
}

.steps__item-title {
  font-family: "Oswald", sans-serif;
  font-size: 35px;
  font-weight: 600;
  letter-spacing: -1.12px;
  text-transform: uppercase;
}

@media (max-width: 767px) {
  .steps__item-title {
    margin-bottom: 25px;
    font-size: 24px;
    font-weight: 600;
    line-height: 100%;
    letter-spacing: -0.768px;
  }
}

.steps__item-number {
  font-size: 25px;
  font-weight: 500;
  letter-spacing: -0.8px;
  margin-bottom: 15px;
}

@media (max-width: 767px) {
  .steps__item-number {
    margin-bottom: 25px;
    font-size: 14px;
    font-size: 400;
  }
}

.steps__item-img {
  position: relative;
  width: 50%;
  max-height: 500px;
}

@media (max-width: 767px) {
  .steps__item-img {
    width: 100%;
  }
}

.steps__item-img img {
  max-width: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.steps__item-range {
  display: flex;
  flex-direction: row;
  margin-bottom: 16px;
  border-radius: 68px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(226, 226, 226, 0.08);
  backdrop-filter: blur(16px);
  color: #dadde4;
  font-weight: 500;
  letter-spacing: -0.5px;
  width: fit-content;
  padding: 5px 10px;
}

@media (max-width: 767px) {
  .steps__desc p {
    margin-bottom: 25px;
    font-size: 14px;
    font-size: 400;
  }
}

.faq {
  position: relative;
  margin-top: 120px;
  margin-bottom: 80px;
}

@media (max-width: 767px) {
  .faq {
    margin-top: 65px;
  }
}

.faq__wrapper {
  position: relative;
  z-index: 3;
  text-align: center;
}

.faq h2 {
  color: #dadde4;
  margin-bottom: 40px;
}

.faq h3 {
  transition: all 0.3s ease-in-out;
  font-size: 24px;
  text-transform: uppercase;
  margin-bottom: 0;
  color: #dadde4;
}

.faq__tab {
  width: 100%;
  overflow: hidden;
  margin-bottom: 24px;
  box-shadow: 0 4px 4px -2px rgba(0, 0, 0, 0.5);
}

.faq__tab-label {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 24px 10px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  text-align: left;
  color: #dadde4;
  border-bottom: 1px solid #4f5055;
}

.faq__tab-label:hover {
  background: #dadde4;
  color: #202020;
}

.faq__tab-label:hover h3 {
  color: #202020;
}

.faq__tab-label:hover::after {
  color: #202020;
}

.faq__tab-label::after {
  content: "+";
  width: 1em;
  height: 1em;
  text-align: center;
  transition: all 0.3s ease-in-out;
  color: #dadde4;
  color: #dadde4;
  font-size: 24px;
  font-weight: 500;
}

.faq__tab-label h3 {
  color: #dadde4;
  font-weight: 500;
  font-size: 24px;
}

@media (max-width: 1024px) {
  .faq__tab-label h3 {
    font-size: 21px;
  }
}

@media (max-width: 767px) {
  .faq__tab-label h3 {
    font-size: 16px;
  }
}

.faq__tab-content {
  max-height: 0;
  background: #dadde4;
  transition: all 0.3s ease-in-out;
  text-align: left;
  color: #202020;
}

.faq__tab-content p {
  color: #202020;
}

.faq__tab input {
  display: none;
}

.faq__tab input:checked+.faq__tab-label {
  background: #dadde4;
  color: #202020;
}

.faq__tab input:checked+.faq__tab-label h3 {
  color: #202020;
}

.faq__tab input:checked+.faq__tab-label::after {
  transform: rotate(90deg);
  color: #202020;
}

.faq__tab input:checked~.faq__tab-content {
  max-height: 100vh;
  padding: 15px;
}

.text {
  margin-bottom: 80px;
}

@media (max-width: 767px) {
  .text {
    margin-bottom: 65px;
  }
}

.text__wrapper {
  position: relative;
  z-index: 3;
}

.text h2 {
  margin: 16px 0;
  font-size: 54px;
  text-align: center;
}

@media (max-width: 767px) {
  .text h2 {
    font-size: 25px;
  }
}

.text h3,
.text h4,
.text h5,
.text h6 {
  margin: 16px 0;
  font-size: 25px;
  font-weight: 700;
  line-height: 25px;
  letter-spacing: 0.8px;
}

.text table {
  margin: 10px 0;
}

.text p {
  margin: 10px 0;
}

.text p:first-child {
  margin: 0 0 10px 0;
}

.text p:last-child {
  margin: 10px 0 0 0;
}

@media (max-width: 767px) {
  .text p {
    margin-bottom: 25px;
    font-size: 14px;
    font-size: 400;
  }
}

@media (max-width: 767px) {
  .text__content {
    font-size: 14px;
  }
}

.text__content ul,
.text__content ol {
  padding-left: 20px;
}

.text-bg {
  background-position: top center;
  background-repeat: no-repeat;
  background-size: contain;
  margin-top: -200px;
}

@media (max-width: 767px) {
  .text-bg {
    margin-top: -70px;
  }
}

.text-bg .container {
  padding-top: 400px;
}

@media (max-width: 1024px) {
  .text-bg .container {
    padding-top: 200px;
  }
}

.author {
  margin-bottom: 80px;
}

@media (max-width: 767px) {
  .author {
    margin-bottom: 65px;
  }
}

.author__wrapper {
  background: #18181d;
  padding: 8px;
  border-radius: 10px;
  position: relative;
  z-index: 3;
}

.author__content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  position: relative;
  z-index: 3;
  padding: 16px;
  background: #dadde4;
  border-radius: 10px;
}

@media (max-width: 767px) {
  .author__content {
    margin-bottom: 10px;
    padding: 7px;
  }
}

.author__image {
  width: 100px;
  height: 100px;
}

@media (max-width: 991px) {
  .author__image {
    width: 80px;
    height: 80px;
  }
}

@media (max-width: 767px) {
  .author__image {
    width: 60px;
    height: 60px;
  }
}

.author__image img {
  border-radius: 50%;
}

.author__title {
  font-size: 24px;
  font-weight: 500;
  color: #202020;
}

@media (max-width: 767px) {
  .author__title {
    font-size: 18px;
  }
}

.author__desc {
  position: relative;
  z-index: 3;
  padding: 16px;
  background: #dadde4;
  border-radius: 10px;
}

.author__desc p {
  line-height: 150%;
  color: #202020;
}

@media (max-width: 767px) {
  .author__desc p {
    font-size: 14px;
  }
}

.footer {
  border-radius: 10px;
  border: 1px solid #545969;
  background: #2d3345;
  padding: 43px 0;
  margin: 0 auto 80px;
  width: 99%;
}

@media (max-width: 767px) {
  .footer {
    padding: 20px 0 20px;
    margin: 0 auto 20px;
  }
}

.footer__wrapper {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.footer ul {
  display: flex;
  flex-direction: row;
  align-items: center;
}

@media (max-width: 767px) {
  .footer ul {
    flex-wrap: wrap;
  }
}

.footer ul li {
  color: #dadde4;
}

.footer ul li::after {
  content: "/";
  margin: 0 24px;
}

.footer ul li:last-child::after {
  content: none;
}

.error-page {
  background-color: #18181d;
  height: 100vh;
  overflow: hidden;
  position: relative;
}

.error-page__wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  width: 100%;
  z-index: 3;
  padding-top: 200px;
  padding-bottom: 80px;
}

@media (max-width: 767px) {
  .error-page__wrapper {
    flex-direction: column-reverse;
    padding-top: 80px;
  }
}

.error-page__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 50%;
}

@media (max-width: 767px) {
  .error-page__left {
    width: 100%;
  }
}

.error-page__left h3 {
  font-size: 56px;
  margin-bottom: 10px;
}

@media (max-width: 767px) {
  .error-page__left h3 {
    font-size: 36px;
    font-weight: 500;
  }
}

.error-page__left span {
  font-size: 24px;
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  .error-page__left span {
    font-size: 18px;
    font-weight: 400;
  }
}

.error-page__left a {
  width: 170px;
}

.error-page__right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 50%;
}

@media (max-width: 767px) {
  .error-page__right {
    width: 100%;
  }
}

.error-page__right svg {
  width: 100%;
}

@media (max-width: 767px) {
  .error-page__right svg {
    transform: scale(0.7);
  }
}

.error404 .footer {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  background: transparent;
  background: #18181d;
}

.reviews {
  margin-bottom: 80px;
  position: relative;
  z-index: 3;
}

@media (max-width: 767px) {
  .reviews {
    margin-bottom: 45px;
  }
}

.reviews__list {
  display: flex;
  flex-direction: column;
  gap: 45px;
}

@media (max-width: 767px) {
  .reviews__list {
    gap: 40px;
  }
}

.reviews__wrapper {
  display: flex;
  flex-direction: column;
}

.reviews__title {
  margin-bottom: 32px;
  text-align: center;
}

@media (max-width: 767px) {
  .reviews__title {
    margin-bottom: 24px;
  }
}

.reviews__text {
  margin-bottom: 30px;
}

.reviews__text p {
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: -0.512px;
  text-transform: capitalize;
  color: #dadde4;
  margin-bottom: 10px;
}

@media (max-width: 767px) {
  .reviews__text p {
    font-size: 14px;
    line-height: 150%;
  }
}

.reviews__item {
  display: flex;
  flex-direction: column;
  padding: 10px 24px 24px;
  border-radius: 10px;
  border: 1px solid #545969;
  background: #2d3345;
  position: relative;
}

@media (max-width: 767px) {
  .reviews__item {
    padding: 10px 8px 23px;
  }
}

.reviews__item-top {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  border-bottom: 1px solid #424a62;
  padding-bottom: 17px;
}

@media (max-width: 767px) {
  .reviews__item-top {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}

.reviews__item-bottom {
  padding-top: 10px;
  color: #8990a5;
  font-size: 14px;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: -0.448px;
}

@media (max-width: 767px) {
  .reviews__item-bottom {
    font-size: 10px;
  }
}

.reviews__item-block {
  display: flex;
  flex-direction: column;
  position: relative;
}

.reviews__item-block:nth-child(2) {
  align-items: center;
  justify-content: center;
}

@media (max-width: 767px) {
  .reviews__item-block:nth-child(2) {
    margin-left: 17px;
    align-items: flex-start;
    justify-content: flex-start;
  }
}

.reviews__item-block:nth-child(3) {
  justify-content: center;
}

@media (max-width: 767px) {
  .reviews__item-block:nth-child(3) {
    width: 100%;
  }
}

.reviews__item-block:nth-child(4) {
  justify-content: center;
}

@media (max-width: 767px) {
  .reviews__item-block:nth-child(4) {
    width: 100%;
  }
}

.reviews__item-avarage {
  display: none !important;
}

.reviews__item-label {
  background: #e00840;
  font-size: 14px;
  line-height: 130%;
  letter-spacing: -0.448px;
  padding: 2px 10px;
  border-radius: 68px;
  margin-bottom: 16px;
  width: fit-content;
  white-space: nowrap;
}

@media (max-width: 991px) {
  .reviews__item-label {
    font-size: 12px;
  }
}

@media (max-width: 767px) {
  .reviews__item-label {
    margin-bottom: 10px;
  }
}

.reviews__item-title {
  font-size: 24px;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: -0.768px;
  text-transform: uppercase;
  color: #dadde4;
  font-family: "Oswald", sans-serif;
  white-space: nowrap;
}

@media (max-width: 991px) {
  .reviews__item-title {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .reviews__item-title {
    font-size: 16px;
  }
}

.reviews__item-img {
  width: 85px;
  height: 85px;
  overflow: hidden;
  margin-top: -30px;
  margin-left: 10px;
  border-radius: 50%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #202020;
  border: 5px solid #2d3345;
  margin-bottom: 12px;
}

@media (max-width: 767px) {
  .reviews__item-img {
    margin-left: 0;
    margin-top: -28px;
  }
}

@media (max-width: 767px) {
  .reviews__item-button {
    width: 100%;
  }
}

.reviews__item-bonus {
  display: flex;
  flex-direction: row;
  justify-content: center;
  max-width: 400px;
}

@media (max-width: 1024px) {
  .reviews__item-bonus {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .reviews__item-bonus {
    margin-top: 17px;
    margin-bottom: 15px;
  }
}

.reviews__item-bonus span {
  text-align: center;
  font-family: "Oswald", sans-serif;
  color: #ffe500;
  font-size: 24px;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: -0.768px;
  text-transform: uppercase;
}

@media (max-width: 991px) {
  .reviews__item-bonus span {
    font-size: 18px;
  }
}

.reviews__item-rating {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 5px;
}

@media (max-width: 767px) {
  .reviews__item-rating {
    position: absolute;
    bottom: -5px;
    left: 103px;
  }
}

.reviews__item-rating span {
  color: #dadde4;
  font-size: 14px;
  font-weight: 500;
  line-height: 130%;
  letter-spacing: -0.448px;
}

@media (max-width: 767px) {
  .reviews__item-rating span {
    font-size: 12px;
  }
}

.reviews__item-stars {
  position: relative;
}

.reviews__item-avarage {
  position: relative;
  appearance: none;
  color: transparent;
  width: auto;
  display: inline-block;
  vertical-align: baseline;
  font-size: 25px;
}

.reviews__item-star {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  color: rgba(0, 0, 0, 0.2);
  background: linear-gradient(90deg, #ffe500 var(--percent), rgba(0, 0, 0, 0.2) var(--percent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 16px;
}

@media (max-width: 767px) {
  .reviews__item-star {
    font-size: 12px;
  }
}

.reviews__item-arrow {
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  cursor: pointer;
  z-index: 2;
  transition: all 0.3s ease-in-out;
}

.reviews__item-hide {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  padding-left: 80px;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  max-height: 0;
}

@media (max-width: 991px) {
  .reviews__item-hide {
    padding-left: 0;
  }
}

@media (max-width: 767px) {
  .reviews__item-hide {
    flex-direction: column;
    justify-content: flex-start;
    gap: 10px;
  }
}

.reviews__item-plus {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 50%;
}

.reviews__item-plus span {
  color: #dadde4;
  position: relative;
  padding-left: 30px;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: -0.512px;
}

.reviews__item-plus span::before {
  content: url("/wp-content/themes/boring-theme/src/img/dot.svg");
  position: absolute;
  top: 2px;
  left: 0;
}

.reviews__item-minus {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 50%;
}

.reviews__item-minus span {
  color: #dadde4;
  position: relative;
  padding-left: 30px;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: -0.512px;
}

.reviews__item-minus span::before {
  content: url("/wp-content/themes/boring-theme/src/img/dot.svg");
  position: absolute;
  top: 2px;
  left: 0;
}

.reviews__item-active {
  opacity: 1;
  max-height: 500px;
  margin-top: 25px;
}

@media (max-width: 991px) {
  .reviews__item-active {
    margin-top: 15px;
  }
}

.reviews__item-active+.reviews__item-arrow {
  transform: translate(-50%) rotate(180deg);
}

.reviews__error {
  color: #dadde4;
  font-size: 42px;
  font-weight: 900;
  text-align: center;
  display: block;
}

.reviews__button {
  margin: 40px auto 0;
  width: 200px;
}

.tech {
  min-height: 120vh;
  height: auto;
}

.tech__wrapper {
  padding-top: 150px;
}

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/* Sections
     ========================================================================== */
/**
   * Remove the margin in all browsers.
   */
body {
  margin: 0;
}

/**
   * Render the `main` element consistently in IE.
   */
main {
  display: block;
}

/* Grouping content
     ========================================================================== */
/**
   * 1. Add the correct box sizing in Firefox.
   * 2. Show the overflow in Edge and IE.
   */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}

/**
   * 1. Correct the inheritance and scaling of font size in all browsers.
   * 2. Correct the odd `em` font sizing in all browsers.
   */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/* Text-level semantics
     ========================================================================== */
/**
   * Remove the gray background on active links in IE 10.
   */
a {
  background-color: transparent;
}

/**
   * 1. Remove the bottom border in Chrome 57-
   * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
   */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  text-decoration: underline dotted;
  /* 2 */
}

/**
   * Add the correct font weight in Chrome, Edge, and Safari.
   */
b,
strong {
  font-weight: bolder;
}

/**
   * 1. Correct the inheritance and scaling of font size in all browsers.
   * 2. Correct the odd `em` font sizing in all browsers.
   */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/**
   * Add the correct font size in all browsers.
   */
small {
  font-size: 80%;
}

/**
   * Prevent `sub` and `sup` elements from affecting the line height in
   * all browsers.
   */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
     ========================================================================== */
/**
   * Remove the border on images inside links in IE 10.
   */
img {
  border-style: none;
}

/* Forms
     ========================================================================== */
/**
   * 1. Change the font styles in all browsers.
   * 2. Remove the margin in Firefox and Safari.
   */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */
}

/**
   * Show the overflow in IE.
   * 1. Show the overflow in Edge.
   */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
   * Remove the inheritance of text transform in Edge, Firefox, and IE.
   * 1. Remove the inheritance of text transform in Firefox.
   */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
   * Correct the inability to style clickable types in iOS and Safari.
   */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
   * Remove the inner border and padding in Firefox.
   */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
   * Restore the focus styles unset by the previous rule.
   */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
   * Correct the padding in Firefox.
   */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
   * 1. Correct the text wrapping in Edge and IE.
   * 2. Correct the color inheritance from `fieldset` elements in IE.
   * 3. Remove the padding so developers are not caught out when they zero out
   *    `fieldset` elements in all browsers.
   */
legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}

/**
   * Add the correct vertical alignment in Chrome, Firefox, and Opera.
   */
progress {
  vertical-align: baseline;
}

/**
   * Remove the default vertical scrollbar in IE 10+.
   */
textarea {
  overflow: auto;
}

/**
   * 1. Add the correct box sizing in IE 10.
   * 2. Remove the padding in IE 10.
   */
[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
   * Correct the cursor style of increment and decrement buttons in Chrome.
   */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
   * 1. Correct the odd appearance in Chrome and Safari.
   * 2. Correct the outline style in Safari.
   */
[type=search] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/**
   * Remove the inner padding in Chrome and Safari on macOS.
   */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
   * 1. Correct the inability to style clickable types in iOS and Safari.
   * 2. Change font properties to `inherit` in Safari.
   */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/* Interactive
     ========================================================================== */
/*
   * Add the correct display in Edge, IE 10+, and Firefox.
   */
details {
  display: block;
}

/*
   * Add the correct display in all browsers.
   */
summary {
  display: list-item;
}

/* Misc
     ========================================================================== */
/**
   * Add the correct display in IE 10+.
   */
template {
  display: none;
}

/**
   * Add the correct display in IE 10.
   */
[hidden] {
  display: none;
}

textarea {
  resize: none;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  width: 100%;
  max-height: 100%;
  height: 100%;
}

* {
  box-sizing: border-box;
}

h1 {
  margin: 0;
}

* {
  font-family: "Poppins", sans-serif;
  color: #dadde4;
  scroll-behavior: smooth;
}

#page {
  overflow: hidden;
}

body {
  background: #18181d;
}

.container {
  max-width: 1185px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}

.scroll-to-top {
  position: fixed;
  right: 10px;
  bottom: 0;
  cursor: pointer;
  z-index: 99;
  transition: all 0.3s ease-in-out;
}

.scroll-to-top:hover {
  transform: scale(1.1);
}

@media (max-width: 767px) {
  .scroll-to-top {
    right: 5px;
  }
}

.scroll-to-top svg {
  width: 60px;
  height: 60px;
  fill: #e00840;
}

@media (max-width: 767px) {
  .scroll-to-top svg {
    width: 40px;
    height: 40px;
  }
}

.content {
  background-image: url("/wp-content/themes/boring-theme/src/img/bg-el.svg");
  background-position: center 70vh;
  background-repeat: no-repeat;
  background-size: cover;
}

main {
  background-position: top;
  background-repeat: no-repeat;
  background-size: 100%;
}

.full {
  width: 100%;
}

.custom-dropdown {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.current-lang {
  display: flex;
  align-items: center;
  margin-right: 10px;
}

.dropdown-toggle::before {
  content: "▾";
  display: inline-block;
  margin-right: 5px;
  transform: rotate(0deg);
  transition: transform 0.3s ease;
}

.custom-dropdown:hover .dropdown-toggle::before {
  transform: rotate(180deg);
}

.lang-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: transparent;
  list-style: none;
  padding: 0;
  margin: 0;
}

.custom-dropdown:hover .lang-menu {
  display: flex;
  flex-direction: column;
}

.lang-item {
  display: flex;
  align-items: center;
}

.lang-flag {
  width: 20px;
  height: auto;
}

.header__button-switcher {
  display: flex;
  gap: 10px;
}

p span,
h1 span,
h2 span,
h3 span,
h4 span,
h5 span,
h6 span {
  font-size: 16px;
  color: inherit;
}

@media screen and (max-width: 767px) {

  p span,
  h1 span,
  h2 span,
  h3 span,
  h4 span,
  h5 span,
  h6 span {
    font-size: 14px;
  }
}

.steps__desc p {
  margin-bottom: 0;
}

p {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0;
  margin: 0 0 15px 0;
}

table td:last-child,
table th:last-child {
  border-top: 1px solid #ffffff;
}

table tr:first-child td,
table tr:first-child th {
  border-top: 1px solid #ffffff;
}

.faq__tab-content ul,
.text__content ul,
.image-text-block__text ul {
  list-style: disc;
}

@media (max-width: 767px) {
  .text p {
    margin-bottom: 0;
  }
}

.footer__logo {
  color: #202020;
}